home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
amiexpress
/
source
/
ae
/
code
/
ax3.00
/
update_crc32.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1980-01-03
|
173 b
|
9 lines
extern __far unsigned long crctab32[];
long update_crc32(int cp, long crc)
{
return((long)
(crctab32[((int)crc ^ (0xFF & cp)) & 0xFF] ^ ((crc >> 8) & 0x00FFFFFFL)));
}